home *** CD-ROM | disk | FTP | other *** search
-
-
- #ifndef _appwin_h_ /* Fri Sep 16 11:06:53 1994 */
- #define _appwin_h_
-
-
- #include "ui/dialog.h"
- #include "ui/label.h"
- #include "ui/pushbtn.h"
- #include "ui/combobox.h"
-
- // ------------------------ Class AppWindow ---------------------------
-
- class AppWindow: public UI_Dialog {
-
- public:
- AppWindow ();
- bool HandleChildEvent (const UI_Event& e);
-
- protected:
- UI_ComboBox* _box0;
- UI_ComboBox* _box1;
- UI_Label* _lbl0;
- UI_Label* _lbl1;
- UI_PushButton* _btn0;
- UI_PushButton* _btn1;
- };
-
- #endif /* _appwin_h_ */
-